89ee4fbf91f45399f0cc8d760afa6e27c8ff7e8d,src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java,CopyBeforeCurrentRightAction,CopyBeforeCurrentRightAction,#,602

Before Change


    class CopyBeforeCurrentRightAction extends AbstractAction implements ListSelectionListener {

        public CopyBeforeCurrentRightAction() {
            ImageIcon icon = ImageProvider.get("dialogs/conflict", "copybeforecurrentright.png");
            putValue(Action.SMALL_ICON, icon);
            if (icon == null) {
                putValue(Action.NAME, "< before");
            }
            putValue(Action.SHORT_DESCRIPTION, tr("Copy their selected elements before the first selected element in the list of merged elements."));
            setEnabled(false);
        }

After Change


    class CopyBeforeCurrentRightAction extends CopyAction {

        public CopyBeforeCurrentRightAction() {
            super("copybeforecurrentright", tr("< before"), 
                    tr("Copy their selected elements before the first selected element in the list of merged elements."));
        }

        @Override
        public void actionPerformed(ActionEvent e) {